home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / Pdmod / modules / socket / grp.m < prev    next >
Encoding:
Text File  |  2002-10-28  |  791 b   |  29 lines

  1. /*
  2. **      $Filename: grp.h $
  3. **      $Release$
  4. **      $Revision: 3.3 $
  5. **      $Date: 1994/04/07 20:23:52 $
  6. **
  7. **      Definitions of gid_t and group structure for 32 bit C compilers
  8. **
  9. **      Copyright © 1993,1994 AmiTCP/IP Group, <AmiTCP-Group@hut.fi>
  10. **                  Helsinki University of Technology, Finland.
  11. **                  All rights reserved.
  12. */
  13.  
  14. /* The group structure */
  15. OBJECT group
  16.     gr_name:PTR TO BYTE,              /* Group name.  */
  17.     gr_passwd:PTR TO BYTE,            /* Password.    */
  18.     gr_gid:LONG,                      /* Group ID.    */
  19.     gr_mem:PTR TO PTR TO BYTE         /* Member list. */
  20.  
  21. /*
  22. struct group *getgrgid(gid_t gid);
  23. struct group *getgrnam(const char * name);
  24.  
  25. void setgrent(void);
  26. struct group *getgrent(void);
  27. void endgrent(void);
  28. */
  29.